home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000245_greg180@aol.com_Mon Jul 29 11:32:23 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  88 lines

  1. Article: 13559 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!nycmny1-snh1.gtei.net!news.gtei.net!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: greg180@aol.com (chuck)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Help needed in setup of Host - dialin client
  6. Date: 29 Jul 2002 08:29:12 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 69
  9. Message-ID: <71dc564d.0207290729.32a9d6cb@posting.google.com>
  10. References: <71dc564d.0207261309.7bfa937a@posting.google.com> <ahse5j$6uc$1@watsol.cc.columbia.edu>
  11. NNTP-Posting-Host: 152.163.188.227
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1027956552 18598 127.0.0.1 (29 Jul 2002 15:29:12 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 29 Jul 2002 15:29:12 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13559
  18.  
  19. fdc@columbia.edu (Frank da Cruz) wrote in message news:<ahse5j$6uc$1@watsol.cc.columbia.edu>...
  20. > In article <71dc564d.0207261309.7bfa937a@posting.google.com>,
  21. > chuck <greg180@aol.com> wrote:
  22. > : Stuck on a seemingly simple problem.  We want to use KERMIT to
  23. > : transfer files between two dialed up machines.  The client will dail
  24. > : the host
  25. > : and have a set of files to send and will , in the same session 
  26. > : want to receive files from the host.
  27. > : 
  28. > : I believe I have the HOST side setup.
  29. > : I used the scripts HOSTMDM.KSC, HOSTMODE.KSC (with mods to skip the
  30. > : prompts)
  31. > :  and HOST.KSC.
  32. > : 
  33. > : I seem to be missing something.
  34. > :
  35. > You're probably doing too much.  Just have your server-side script
  36. > set the appropriate communication parameters, wait for the call to
  37. > come in (ANSWER 0), then enter server mode.  Then you can drive
  38. > everything from the client.  Example:
  39. >   cd some-directory
  40. >   set port tapi
  41. >   set speed 57600
  42. >   answer 0
  43. >   if success server
  44. > If you want to keep accepting calls:
  45. >   while true {
  46. >       answer 0
  47. >       if success server
  48. >   }
  49. >   
  50. > Further elaborations are possible.
  51. > - Frank
  52.  
  53. Frank:
  54.  
  55. Thanks for simplifing my problem, less IS indeed more.
  56.  
  57. Further, Chapter 11 is my new best friend. I had
  58. not Read The Fine Manual to that point.
  59.  
  60. It seems my problem is on the client side now.
  61. Some subtle point or set command I am missing?
  62. Further elaboration seems to be needed...
  63.  
  64. On the host side call, is answered, the server reports itself
  65. present and displays the messages below (I set server display off)
  66.  
  67.  Speed changed to 26400
  68.  Call complete: "CONNECT 26400".
  69. Entering server mode on Boca V90 Tidalwave External FD
  70. Type Ctrl-C to quit.
  71.  
  72. --------------
  73. Client seems unable to talk to the server however
  74.  
  75. After I dial it connects, and I Alt-X to command screen.
  76. I issue an RDIR (to test the connection) and I receive the message
  77.  
  78.   Press X or E key to cancel.
  79.  
  80. E of course cancels, X errors out after 60+ seconds.
  81.  
  82. When I quit the client session, host sees it as well
  83. and sets up for next call as hoped.
  84.